|
2020-2021 Sunseeker Telemetry and Lighting System
|
#include "driverlib.h"Go to the source code of this file.
Functions | |
| void | main (void) |
Variables | |
| uint8_t | Data [16] |
| uint8_t | CipherKey [32] |
| uint8_t | DataAESencrypted [16] |
| uint8_t | DataAESdecrypted [16] |
| int | i = 0 |
| void main | ( | void | ) |
Definition at line 78 of file aes256_ex1_encryptDecrypt.c.
References CipherKey, Data, DataAESdecrypted, and DataAESencrypted.
| uint8_t CipherKey[32] |
Definition at line 63 of file aes256_ex1_encryptDecrypt.c.
Referenced by main().
| uint8_t Data[16] |
AES256 Encryption and Decryption Example
Description: This demo shows how to use the AES Encryption and Decryption
MSP430FR5969
-----------------
Key: 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f Plaintext: 00112233445566778899aabbccddeeff Ciphertext: 8ea2b7ca516745bfeafc49904b496089
This example uses the following peripherals and I/O signals. You must review these and change as needed for your own board:
This example uses the following interrupt handlers. To use this example in your own application you must add these interrupt handlers to your vector table.
Definition at line 56 of file aes256_ex1_encryptDecrypt.c.
Referenced by main().
| uint8_t DataAESdecrypted[16] |
Definition at line 75 of file aes256_ex1_encryptDecrypt.c.
Referenced by main().
| uint8_t DataAESencrypted[16] |
Definition at line 74 of file aes256_ex1_encryptDecrypt.c.
Referenced by main().
| int i = 0 |
Definition at line 76 of file aes256_ex1_encryptDecrypt.c.